home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000361_news@columbia.edu _Tue Apr 9 03:35:59 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id DAA23321 for <kermit.misc@watsun>; Tue, 9 Apr 1996 03:35:58 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id DAA04910 for kermit.misc@watsun; Tue, 9 Apr 1996 03:35:53 -0400 (EDT)
  4. Path: news.columbia.edu!panix!imci5!imci4!newsfeed.internetmci.com!in2.uu.net!csnews!boulder!coopnews.coop.net!news.den.mmc.com!usenet
  5. From: Ernie Binder <binder@pogo.den.mmc.com>
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Kermit95 and script files
  8. Date: Mon, 08 Apr 1996 21:54:26 -0400
  9. Organization: Lockheed Martin Corp., M&DS
  10. Lines: 31
  11. Message-ID: <3169C352.34F1@pogo.den.mmc.com>
  12. NNTP-Posting-Host: 166.17.9.220
  13. Mime-Version: 1.0
  14. Content-Type: text/plain; charset=us-ascii
  15. Content-Transfer-Encoding: 7bit
  16. X-Mailer: Mozilla 2.0 (Win95; I)
  17.  
  18. Can someone help me, I am stumped.
  19.  
  20. I have written a script to work with my new Kermit95 program, but I
  21. have a small problem.  I have to record the password in the script
  22. file to make it work.  I tried to place the UserId and Password in
  23. the K95 Dialer, login page, but the Password does not seem to be
  24. transfered (recognized).  However, the UserId is recognized.  The 
  25. value of the \v(password) seems to be corrupted or not what I assigned 
  26. it.  The beginning of the script assigns the UserID and Password as
  27. follows:
  28.  
  29. assign \%1 \v(userid)        ; UserID is defined on the Login 
  30.                 ; page of the K-95 Dialer
  31. assign \%2 \v(password)        ; Password is defined on the Login 
  32.                 ; page of the K-95 Dialer
  33.  
  34. I then check the values of these variables and I get a correct UserId,
  35. but the Password is hosed.  If I put the password in the script every
  36. thing works OK.  To check the variable contents I used:
  37.  
  38. echo \%1
  39. echo \%2
  40.  
  41. To use the variables I used:
  42.  
  43. output \%1
  44. output \%2
  45.  
  46. Have I missed something?  
  47.  
  48.         Ernie